【Git】提交代码详细流程
Git 提交代码的详细步骤如下:
- 打开终端(Terminal)或命令提示符(Command Prompt)。
- 切换到你的本地仓库所在的目录。
- 使用
git status
检查文件状态,查看哪些文件已经修改。 使用
git add
命令把想要提交的文件添加到暂存区(Staging Area)。git add <file1> <file2> ...
或者添加当前目录下的所有更改:
git add .
使用
git commit
命令来提交这些更改到本地仓库。git commit -m "Your commit message"
如果你已经配置了远程仓库,使用
git push
将本地的更改推送到远程仓库。git push origin <branch-name>
其中
<branch-name>
是你想要推送的分支名称,例如master
或main
。
以下是实际的命令示例:
cd path/to/your/local/repo
git status # 查看修改的文件
git add file1.txt # 添加单个文件到暂存区
git add . # 添加当前目录下所有修改的文件到暂存区
git commit -m "Add feature X" # 提交更改到本地仓库
git push origin master # 将本地的 master 分支更改推送到远程仓库
确保你已经配置了用户信息和远程仓库地址。如果没有,可以使用以下命令配置:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git remote add origin <remote-repository-URL>
评论已关闭