Git初始化仓库

Git 全局设置:

git config --global user.name "user-name"
git config --global user.email "[email protected]"

创建 git 仓库:

mkdir test
cd test
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/user-name/test.git
git push -u origin "master"

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/user-name/test.git
git push -u origin "master"

你可能感兴趣的:(JAVA前后端开发笔记,JAVA全栈开发笔记(全),git)