Git常用命令
生成秘钥ssh-keygen -t rsa -C "youremail@example.com"1、进行初始化将目录变成仓库git init2、设置姓名以及邮箱git config --global user.email "you@example.com"git config --global user.name "Your Name"3、关联到远程仓库git remote...
·
生成秘钥
ssh-keygen -t rsa -C "youremail@example.com"
1、进行初始化将目录变成仓库
git init
2、设置姓名以及邮箱
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
3、关联到远程仓库
git remote add origin 你的远程库地址
4、远程库与本地同步合并
git pull --rebase origin master
5、把文件添加到本地版本库
git add .
6、用命令git commit把文件提交到仓库
git commit -m 'note'
7、将最新的修改推送到远程仓库
git push -u origin master
8、拷贝代码
git clone你的远程库地址
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)