当前位置:   article > 正文

【Git工具】Git使用与面试内容_git推送代码

git推送代码

1. 下载git

Git下载安装教程

2. 配置全局信息

git config --global user.name "your user name"

git config --global user.email "your user email"
  • 1
  • 2
  • 3

3. 使用Git推送本地内容

1)首次推送

在项目文件的文件夹进入黑窗口:
在这里插入图片描述
或者进入git操作窗:点击项目文件夹,右键点击 Git Bash Here
在这里插入图片描述
进入后:

git init
git add.
git commit -m "备注信息"
git remote add origin 
  • 1
  • 2
  • 3
  • 4
  1. git init :会创建一个.git文件,初始化本地git仓库;
  2. git add .:将本地仓库内所有文件添加到缓冲区;
  3. git commit -m "你的提交备注":把文件提交到版本库,输入提交备注;
  4. git remote add origin 远程库地址:把本地仓库与远程仓库管理;
  5. git push -u origin master:把本地代码推送到远程代码仓库。
2)以后更新代码

同样进入cmd 或者 git bash here;然后:

  1. git add .:将本地仓库内的所有文件添加到缓冲区;
  2. git commit -m "提交备注":把文件提交到版本库;
  3. git pull origin master:把远程仓库的代码拉下来合并到本地;
  4. git push origin master:把本地代码推送到远程代码仓库。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/555208
推荐阅读
相关标签
  

闽ICP备14008679号