美文网首页
Cs6300 Summer 17, Week2, git usa

Cs6300 Summer 17, Week2, git usa

作者: eshuyan | 来源:发表于2017-05-27 05:54 被阅读0次

1. Create a directory: mkdir

2. Clone a repo: git clone

3. Create/ Edit a file: touch / vim

4. Add/Commit a file: git add , git commit -m "comment" (Need add first before commit)

5. Create/change a branch: git checkout -b   (-b: new branch)

6. Merge: git merge  (Need to go to the "main" branch, and then merge. For example, if we want to merge 'development' to 'master', then we need go to master first)

7. Push. git push --all (push all local branches)

8. Tag. git tag .  after tag, git push does not merge your local repo with remote repo. Still need to do git push

相关文章

网友评论

      本文标题:Cs6300 Summer 17, Week2, git usa

      本文链接:https://www.haomeiwen.com/subject/vupffxtx.html