当前位置:   article > 正文

创建远程git仓库、同步代码指引、修改远程仓库地址_git 远程仓库始终空的

git 远程仓库始终空的

命令行指引
您还可以按照以下说明从计算机中上传现有文件。


Git 全局设置

  1. git config --global user.name "xxx"
  2. git config --global user.email "xxxxx@xx.com"

只设置当前项目

  1. git config user.name "xxx"
  2. git config user.email "xxxxx@xx.com"


创建一个新仓库

  1. git clone https://git.xxx.net/uo_bigdata/test111.git
  2. cd test111
  3. touch README.md
  4. git add README.md
  5. git commit -m "add README"
  6. git push -u origin master

推送现有文件夹

  1. cd existing_folder
  2. git init
  3. git remote add origin https://git.xxx.net/uo_bigdata/test111.git
  4. git add .
  5. git commit -m "Initial commit"
  6. git push -u origin master

推送现有的 Git 仓库(修改远程仓库地址)

  1. cd existing_repo
  2. git remote rename origin old-origin
  3. git remote add origin https://git.xxx.net/uo_bigdata/test111.git
  4. git push -u origin --all
  5. git push -u origin --tags

查看远程仓库

git remote -v

更新所有分支到本地

  1. git fetch --all
  2. git pull --all

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/532890
推荐阅读
相关标签
  

闽ICP备14008679号