记录一下第一次成功push代码。昨晚push出现的合并冲突真的让我白白写差不多一天半的代码,不过小伙伴说在踩坑中进步。只好微笑面对...
1.首先是进入要push代码的目录,然后 git add . 。其中 “.”代表 add全部文件
2. 然后 git status 会提示你有哪些文件可以commit
3. 然后 git commit 。
4. 最后 git push 。代码就push 成功了。
记录一下第一次成功push代码。昨晚push出现的合并冲突真的让我白白写差不多一天半的代码,不过小伙伴说在踩坑中进步。只好微笑面对...
1.首先是进入要push代码的目录,然后 git add . 。其中 “.”代表 add全部文件
2. 然后 git status 会提示你有哪些文件可以commit
3. 然后 git commit 。
4. 最后 git push 。代码就push 成功了。