Git Learning Process

2018-03-23  本文已影响0人  FlyingPeter

Learn More,Pratice More,Have a good day!

教程是Mac的环境,windows不太一样,很幸运找到了入口,没浪费太多的时间。在文件夹下右击选择 Git Bash Here

本地操作

Remote

  • git config --global user.name 'your name'
  • git config -- global user.email 'your email'
  • git config user.name
  • git config user.email

有时候,某个项目需要用特定的用户名和密码提交,到该项目下

git config user.name 'your name'
git config user.email 'your eamil'

本地与GitHub同步

  • git pull origin master 从远程获取最新的代码版本
  • git push origin master 将本地版本更新到远程库origin的 master分支

1.本地没有该项目,从github上clone

git clone https://github.com/FlyingPetter/Walter.git

然后修改文件或者添加文件,需要add commit

git add changefile.nsq
git commit -m 'remark msg'
git push origin master

2.本地已经有test项目,并且commit多次了需要链接到远程库

  1. 在github上新建一个repository test
  2. git remote add origin https://github.com/FlyingPetter/test.git
  3. git push origin master

git remote -v 查看所有的远程库

上一篇下一篇

猜你喜欢

热点阅读