Git 文件跟踪

.gitignore只追踪.h 和.cpp结尾的文件。

*.*
!*.cpp
!*.h

我们一般写的形式为“ git push origin <src>:<dst> ”,冒号前表示local branch的名字,冒号后表示remote repository下 branch的名字。注意,如果你省略了<dst>,git就认为你想push到remote repository下和local branch相同名字的branch。其中origin指定了你要push到哪个remote。

猜你喜欢

转载自blog.csdn.net/clud12345/article/details/80320809