Cs6300 Summer 17, Week2, git usage

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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容