关于java:简易的命令行入门教程

Git 全局设置:

git config --global user.name "user0001.c"
git config --global user.email "user001@163.com"

创立 git 仓库:

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

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/user001/helloWorld.git
git push -u origin "master"

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理