git commit file
作者:互联网
Git
首先git --version
查看是否安装git?我的MBP不知道什么时候已经装过,版本git version 2.23.0
。
Commit a project
首先,cd /Users/yourusername/Workspace/yourproject
进入要提交的项目目录。
然后,创建一个.gitignore
文件,将无需提交的目录写进去。
初始化先,git init
。
添加git add .
提交git commit -a
Commit to Github
For the 1st time
第一次提交代码到github需要
ssh-keygen -t ed25519 -C "***@hotmail.com"
很奇怪,系统报zsh: command not found: $
。通过which ssh-keygen
命令看,是安装了的/usr/bin/ssh-keygen
。无奈用了全路径/usr/bin/ssh-keygen -t ed25519 -C "***@hotmail.com"
。
按照文档pbcopy < ~/.ssh/id_ed25519.pub
将数据copy到粘贴板。
vi ./git/config
Commit
git remote add origin https://github.com/yourorg/yourproject.git
git push --set-upstream origin main
git remote add origin git@github.com:landingsiteteam/smartools-frontend.git
git branch -M main
推文件
git push
拉文件
git pull
标签:origin,git,keygen,add,ssh,file,commit,com 来源: https://blog.csdn.net/wanghao_sh/article/details/117921732