Git简单使用

一、git账号配置

git config --global user.name your_name
git config --global user.email your_email

二、指定文件夹下拉取远程代码

创建工作目录,拉去远程代码

git clone https://

三、创建新分支

查看现有分支 git branch
创建新分支 git branch local_branch
切换到新分支 git checkout local_branch
拉去远程代码到新分支 git pull origin remote_branch:local_branch

你可能感兴趣的:(编程基础,git)