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

# 安装 sudo apt install git # 进行配置 git config --global user.name "yourName" git config --global user.email "yourEmail@mail.mail"# 先创建对应的文件夹 git init# 进行初始化 touch .ignore# 配置忽略清单, git add# 提交 git commit -m "版本说明" git log# 查看提交日志 git reset --hard xxxxx# 根据哈希值回退版本

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

    推荐阅读