工作区:当前路径下ls或cat能够看到的目录及文件。
暂存区:工作区的历史快照的合集,每次add操作是此合集的一部分。对同一个文件多次add并不是冲突,因为这是同一个作者的修改,以时间为序,最终状态为结果。
如果是多个作者对同一个文件的相同位置(直观说是行数)进行修改,那么就产生了无法直接解决的冲突:时间先后顺序并不能反映出大家最终的目标。
添加upstream:
1 2 3 4 5 6 7 8 9 10 |
alvin@chen2:~/openenclave$ git remote -v origin https://github.com/nonpolarity/openenclave.git (fetch) origin https://github.com/nonpolarity/openenclave.git (push) alvin@chen2:~/openenclave$ git remote add upstream https://github.com/openenclave/openenclave.git alvin@chen2:~/openenclave$ git remote -v origin https://github.com/nonpolarity/openenclave.git (fetch) origin https://github.com/nonpolarity/openenclave.git (push) upstream https://github.com/openenclave/openenclave.git (fetch) upstream https://github.com/openenclave/openenclave.git (push) alvin@chen2:~/openenclave$ |
删除upstream的push:
1 2 3 4 5 6 7 |
alvin@chen2:~/openenclave$ git remote set-url --push upstream disable alvin@chen2:~/openenclave$ git remote -v origin https://github.com/nonpolarity/openenclave.git (fetch) origin https://github.com/nonpolarity/openenclave.git (push) upstream https://github.com/openenclave/openenclave.git (fetch) upstream disable (push) alvin@chen2:~/openenclave$ |
设置用本地时间显示:
1 |
alvin@chen2:~/openenclave$ git config --global log.date local |
设置用vim做编辑器:
1 |
alvin@chen2:~/openenclave$ git config --global core.editor "vim" |
修改本地分支的远程关联:
1 2 3 4 5 6 7 8 9 |
alvin@chen2:~/openenclave$ git fetch upstream remote: Enumerating objects: 774, done. remote: Counting objects: 100% (774/774), done. remote: Compressing objects: 100% (9/9), done. remote: Total 1451 (delta 766), reused 771 (delta 765), pack-reused 677 ...... alvin@chen2:~/openenclave$ git branch --set-upstream-to=upstream/master master Branch 'master' set up to track remote branch 'master' from 'upstream'. alvin@chen2:~/openenclave$ |
其效果与直接编辑.git/config或者执行
1 |
alvin@chen2:~/openenclave$ git config --edit |
相同。
查看文件的修改历史:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
alvin@chen:~/openenclave$ git log -p host/files.c commit 02428b8e7b59f4c40050d6f1eaee1e0cbbb5cdf4 Author: Simon Leet <simon.leet@microsoft.com> Date: Tue Nov 5 17:34:07 2019 Update copyright headers to include all Open Enclave SDK contributors ... diff --git a/host/files.c b/host/files.c index 114e20108..848544d39 100644 --- a/host/files.c +++ b/host/files.c @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Open Enclave SDK contributors. // Licensed under the MIT License. ... |
撤销修改,实际根据操作可能还未add到暂存区或者已add。
首先是取消add:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
alvin@chen ~/openenclave$ git reset HEAD tests/file/enc/enc.cpp Unstaged changes after reset: M tests/file/enc/enc.cpp alvin@chen4 ~/openenclave$ git status Refresh index: 100% (13722/13722), done. On branch fs Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: tests/syscall/CMakeLists.txt modified: tests/syscall/fs/enc/enc.cpp Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: tests/file/enc/enc.cpp alvin@chen4 ~/openenclave$ |
现在暂存区已没有修改了,撤销修改:
1 2 |
alvin@chen4 ~/openenclave$ git checkout -- tests/file/enc/enc.cpp alvin@chen4 ~/openenclave$ |
应用某个分支的某个文件修到当前分支:
1 2 3 4 5 6 7 8 9 10 11 |
alvin@chen ~/openenclave$ git checkout tmp ~/openenclave/host/windows/syscall.c Updated 1 path from a76108b05 alvin@chen ~/openenclave$ git status On branch fs Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: host/windows/syscall.c alvin@chen ~/openenclave$ |
可以看出这相当于针对文件的cherry-pick,但是pick的是文件的在某个分支最终状态。仔细看刚才的输出,“Updated 1 path from a76108b05”,因此可以大胆地用commit替代刚才的分支:
1 2 3 4 5 6 7 8 9 10 11 |
alvin@chen ~/openenclave$ git checkout a76108b05 ~/openenclave/host/windows/syscall.c Updated 1 path from a76108b05 alvin@chen ~/openenclave$ git status On branch fs Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: host/windows/syscall.c alvin@chen ~/openenclave$ |
放弃本地分支的commit,更新到github.com的最新版,如更新master:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
alvin@chen:~/openenclave$ git fetch --all Fetching origin Fetching upstream alvin@chen:~/openenclave$ git reset --hard HEAD is now at d2050f5c2 Merge #2559 alvin@chen:~/openenclave$ git pull upstream master Updating 574ba3b0f..d2050f5c2 Fast-forward debugger/pythonExtension/load_symbol_cmd.py | 2 +- docs/LibcSupport.md | 4 ++-- libc/CMakeLists.txt | 5 +++++ 3 files changed, 8 insertions(+), 3 deletions(-) alvin@chen:~/openenclave$ |
修改历史commit的信息/作者信息
有的时候回头发现之前写的message实在不堪入目,不改写就如坐针毡。有的时候在别的机器上保存的commit,作者信息未更新便已push:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
commit 58743d40c9dc4298bf3f5045c3819261a17db623 (HEAD -> oesign, origin/oesign) Author: Alvin Chen <alvin@chen.asia> Date: Fri Mar 6 18:24:52 2020 Using compiling option to activate macro commit aed4182a0ea255f215f4c146558900eeb23b81c3 Author: Ubuntu <alvin@wechen5.mntu4j2qar1urcunxtbe3mmbae.ax.internal.cloudapp.net> Date: Wed Mar 4 21:20:21 2020 Split source using OESIGN commit feb092acd536d0ae950f73af607af7d6c479f556 Merge: f496bfed0 09914d32c Author: oe-bors[bot] <oeciteam@microsoft.com> Date: Tue Mar 3 10:52:41 2020 Merge #2605 2605: Bump ansible from 2.8.2 to 2.8.8 in /scripts/ansible r=BRMcLaren a=dependabot[bot] Bumps [ansible](https://github.com/ansible/ansible) from 2.8.2 to 2.8.8. <details> <summary>Commits</summary> |
实际上还是要通过rebase解决。选中最后两条进行rebase:
1 2 3 4 5 6 7 8 9 10 |
alvin@chen:~/openenclave/build$ git rebase -i feb092acd536d0ae950f73af607af7d6c479f556 58743d40c9dc4298bf3f5045c3819261a17db623 Stopped at aed4182a0... Split source using OESIGN You can amend the commit now, with git commit --amend Once you are satisfied with your changes, run git rebase --continue alvin@chen:~/openenclave/build$ |
注意e选项:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
e aed4182a0 Split source using OESIGN pick 58743d40c Using compiling option to activate macro # Rebase feb092acd..58743d40c onto feb092acd (2 commands) # # Commands: # p, pick = use commit # r, reword = use commit, but edit the commit message # e, edit = use commit, but stop for amending # s, squash = use commit, but meld into previous commit # f, fixup = like "squash", but discard this commit's log message # x, exec = run command (the rest of the line) using shell # d, drop = remove commit # # These lines can be re-ordered; they are executed from top to bottom. # # If you remove a line here THAT COMMIT WILL BE LOST. # # However, if you remove everything, the rebase will be aborted. # # Note that empty commits are commented out |
保存后进行edit:
1 |
alvin@chen:~/openenclave/build$ git commit --amend --author "Alvin Chen <alvin@chen.asia>" |
若需要修改message可以再编辑,保存后所有信息都修改了。注意需要git rebase –continue来完成rebase。完成后效果如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
commit dcd54a12fb8694bb2015be8671d1afa3d5dd080e (HEAD) Author: Alvin Chen <alvin@chen.asia> Date: Fri Mar 6 18:24:52 2020 Using compiling option to activate macro commit 5020c997299f7af55333c88e890fbd590a662b3f Author: Alvin Chen <alvin@chen.asia> Date: Wed Mar 4 21:20:21 2020 no words. commit feb092acd536d0ae950f73af607af7d6c479f556 Merge: f496bfed0 09914d32c Author: oe-bors[bot] <oeciteam@microsoft.com> Date: Tue Mar 3 10:52:41 2020 Merge #2605 2605: Bump ansible from 2.8.2 to 2.8.8 in /scripts/ansible r=BRMcLaren a=dependabot[bot] Bumps [ansible](https://github.com/ansible/ansible) from 2.8.2 to 2.8.8. <details> <summary>Commits</summary> |
submodule更新:
1 |
git submodule update -r --init |
submodule全部重置:
1 |
git submodule foreach git reset --hard |
放弃没有添加到暂存区的新增文件(与放弃文件修改不一样):
单个文件用rm删除即可。所有文件:
1 |
git clean -xdf |
请记住新东方。
push新的branch时不用确认,直接到同名branch:
1 |
git config --global --add push.autoSetupRemote true |