首页 > 其他 > 详细

git push by other PC.md

时间:2019-05-05 23:08:07      阅读:198      评论:0      收藏:0      [点我收藏+]

?git push by other PC

Command line instructions

You can also upload existing files from your computer using the instructions below.

Git global setup

git config --global user.name "Witt Xie"
git config --global user.email "wittxie@gmail.com"

Create a new repository

git clone git@gitlab.com:software-setting/vscode-setting-vscode.git
cd vscode-setting-vscode
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Push an existing folder

cd existing_folder
git init
git remote add origin git@gitlab.com:software-setting/vscode-setting-vscode.git
git add .
git commit -m "Initial commit"
git push -u origin master

Push an existing Git repository

cd existing_repo
git remote rename origin old-origin
git remote add origin git@gitlab.com:software-setting/vscode-setting-vscode.git
git push -u origin --all
git push -u origin --tags

git push by other PC.md

原文:https://www.cnblogs.com/wittxie/p/10816666.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!