赞
踩
命令行指引
您还可以按照以下说明从计算机中上传现有文件。
- git config --global user.name "xxx"
- git config --global user.email "xxxxx@xx.com"
- git config user.name "xxx"
- git config user.email "xxxxx@xx.com"
- git clone https://git.xxx.net/uo_bigdata/test111.git
- cd test111
- touch README.md
- git add README.md
- git commit -m "add README"
- git push -u origin master
- cd existing_folder
- git init
- git remote add origin https://git.xxx.net/uo_bigdata/test111.git
- git add .
- git commit -m "Initial commit"
- git push -u origin master
- cd existing_repo
- git remote rename origin old-origin
- git remote add origin https://git.xxx.net/uo_bigdata/test111.git
- git push -u origin --all
- git push -u origin --tags
git remote -v
- git fetch --all
- git pull --all
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。