官方主页
GitHub
https://github.com/NickeManarin/ScreenToGif
下载地址
https://github.com/NickeManarin/ScreenToGif/releases
注意
It requires .Net Framework 4.6.1 (or above).
GitHub
https://github.com/NickeManarin/ScreenToGif
下载地址
https://github.com/NickeManarin/ScreenToGif/releases
注意
It requires .Net Framework 4.6.1 (or above).
下载地址
https://notepad-plus-plus.org/downloads
GitHub
https://github.com/notepad-plus-plus/notepad-plus-plus
Notepad++ is a free (as in “free speech” and also as in “free beer”) source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.
Based on the powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.
I hope you enjoy Notepad++ as much as I enjoy coding it.
git reset --hard cfec6ff |
git reset --hard HEAD^ |
git reset --hard <commitid> |
git reset --soft HEAD^ |
仅仅是撤回commit操作,写的代码仍然保留
HEAD^的意思是上一个版本,也可以写成HEAD~1
撤回2次提交,可以使用HEAD~2
--mixed |
不删除工作空间改动代码,撤销commit,并且撤销git add
这个为默认参数,git reset --mixed HEAD^
和 git reset HEAD^
效果是一样的。
--soft |
不删除工作空间改动代码,撤销commit,不撤销git add
--hard |
删除工作空间改动代码,撤销commit,撤销git add
完成这个操作后,就恢复到了上一次的commit状态。
checkout B |
[如果有冲突,解决冲突之后
git add |
]
git push |
.gitattributes中写入
"filename merge=ours": |
在根目录下运行命令行
git config merge.ours.driver true |
更新本地分支与远程分支保持一致
git remote update origin --prune |
合并分支B中srv目录下的所有文件和view目录下的index.html文件到A分支
git checkout A |
srv下有多层目录,故不能用srv/*
6 / 6