Git简易的命令行入门教程

Posted imsoft.cnblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git简易的命令行入门教程相关的知识,希望对你有一定的参考价值。

 简易的命令行入门教程:

Git 全局设置:

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

创建 git 仓库:

mkdir imsoft.github.io
cd imsoft.github.io
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://git.oschina.net/imsoft/imsoft.github.io.git
git push -u origin master

已有项目?

cd existing_git_repo
git remote add origin https://git.oschina.net/imsoft/imsoft.github.io.git
git push -u origin master

以上是关于Git简易的命令行入门教程的主要内容,如果未能解决你的问题,请参考以下文章

简易的命令行入门教程:

技能篇:git的简易教程

Git可视化极简易教程 —— Git GUI使用方法

Git简易实操教程

git之在eclipse上玩

git 简易linux使用