首页 > 技术文章 > # ✨git使用方法

os4top16 2020-04-16 20:01 原文

git config --global user.name "yundd"
git config --global user.email "yundv@outlook.com"

创建一个新仓库

git clone https://XX/yundd/jenkins.git
cd jenkins
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://XX/yundd/jenkins.git
git add .
git commit -m "Initial commit"
git push -u origin master

推送现有的 Git 仓库

cd existing_repo
git remote rename origin old-origin
git remote add origin https://XX/yundd/jenkins.git
git push -u origin --all
git push -u origin --tags

git常见问题汇总

推荐阅读