git命令的使用以及GitHub的操作

 # 安装
sudo apt install git 


# 进行配置
git config --global user.name "yourName"
git config --global user.email "[email protected]"

# 先创建对应的文件夹
git init   # 进行初始化
touch .ignore     # 配置忽略清单,
git add           # 提交
git commit -m "版本说明"
git log            # 查看提交日志
git reset --hard xxxxx     # 根据哈希值回退版本



远程仓库的关联

git clone https://github.com/cxy/Git.git  fileName     # 将你的远程仓库克隆至本地
git remote add yourName https://github.com/cxy/Git.git     # 将你对应的远程仓库的控制起名字为yourName
git remote rm yourName   # 删除关联
git push -u yourName  master # 将本地仓库提交至远程仓库主线
git branch   # 查看当前分支

你可能感兴趣的:(git命令的使用以及GitHub的操作)