本文主要是介绍git使用 及其常用操作命令,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
初始化项目
- git init
- git add .
- git commit -m “first commit”
- git remote add origin git@github.com:bo0123/wechat_video2gif.git
- git push -u origin master
- git add .
- git commit -m “second commit” // 要用双引号
- git push
配置
git config --global user.email “915802070@qq.com”
git config --global user.name “bo0123”
ssh-keygen -t rsa -C “915802070@qq.com” (在git bash下) 系统会提示key的保存位置(一般是~/.ssh目录)和指定口令,保持默认,连续三次即可
然后vim打开id_rsa.pub文件,粘贴到github账号管理的添加SSH KEY界面中
git init 初始化本地仓库 (在git bash下) (D:\ProgramData\MiniProgramWorkspace\miniprogram)
git add “文件名” //用户添加文件
git add . //可以用来添加当前目录下的所有文件
git commit -m “first commit”
git tag 01知识点1
git tag 查看tag
https://github.com->>>>>>>New Repository
git remote add origin git@github.com:bo0123/LearnMiniProgram.git
git push -u origin master
git log
git reset 711ef2436b77bf3c4afdad2 (一部分哈希值即可)
git reset --hard 711ef2436b77bf3c4afdad2 (一部分哈希值即可)
git status
git push --tags
git clone https://github.com/coderwhy/LearnMiniProgram.git
git commit “filename”
git checkout tagname #切换版本
git clean -df
git clone 指定分支: git clone -b master https://gitee.com/liu21st/thinkphp.git
这篇关于git使用 及其常用操作命令的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!