git push 代码过程

时间:2024-03-15 10:23:22

记录一下第一次成功push代码。昨晚push出现的合并冲突真的让我白白写差不多一天半的代码,不过小伙伴说在踩坑中进步。只好微笑面对...

1.首先是进入要push代码的目录,然后 git add . 。其中 “.”代表 add全部文件

git push 代码过程

2. 然后 git status 会提示你有哪些文件可以commit

git push 代码过程

3. 然后 git  commit 。

git push 代码过程

4. 最后 git push 。代码就push 成功了。

git push 代码过程