github使用命令總結
Install
sudo apt-get update
sudo apt-get install git
git config --global user.name "your_ame"
git config --global user.email "youremail@domain.com"
ssh-keygen -C `youremail@domain.com` -t rsa
Continuous press enter and no password set
cd ~/.ssh/
more id_rsa.pub
paste it on Settings-ssh and GPG keys-new SSH key-ok
vi ~/.gitconfig
after added the following contents , the next time you enter your username and password ,
git can remember that and you won`t have to enter later
[credential]
helper = store
Change password
cd ~/.ssh/
ssh-keygen -f id_rsa -p
cd ~/Document/dockerfiles
Start a repository
git init
touch Readme
git add Readme
git commit -m `add readme file`
connect local repository with github repository:
git remote add origin https://github.com/your_github_name/your_github_repository_name.git
git push origin master
Clone a repository
git clone https://github.com/your_github_name/your_github_repository_name.git
git add Readme_new
git commit -m `add new readme file`
git commit -a
git push origin master
After made change at master branch
git pull origin master
While mkdir
remember that the new dir should`not be emply to add to git
mkdir linux
cd linux
touch readme
cd ..
git add linux
git commit -m `add linux`
git push origin master
While delete
rm *.xml
git rm *.xml
git commit -m "delete *.xml"
git push origin master
相關文章
- artisan 命令使用總結
- Git和github使用方法總結Github
- sql plus命令使用總結SQL
- 使用mpvue開發github小程式總結VueGithub
- github常用指令總結Github
- hadoop 使用命令總結【更新ing】Hadoop
- vi 命令使用--AIX環境下總結AI
- NPM 命令總結NPM
- docker命令總結Docker
- VIM 命令總結
- git命令總結Git
- redis命令總結Redis
- pip 命令總結
- uboot 命令總結boot
- SHell命令總結
- bat命令總結BAT
- hpux命令總結UX
- Vi命令總結
- expr命令總結
- Linux命令總結--mkdir命令Linux
- 【總結】GitHub第一天Github
- git常用命令總結以及用github來展示你的前端頁面Github前端
- 常用git命令總結Git
- linux命令總結Linux
- docker命令總結(二)Docker
- 常用kubectl命令總結
- adb命令總結
- jq命令用法總結
- 自用ssh命令總結
- sed命令用法總結
- sqooooop命令總結:OOP
- Oracle rman 命令總結Oracle
- 常用 Git 命令總結Git
- Linux 命令總結Linux
- Oracle SET 命令總結Oracle
- SMIT快捷命令總結MIT
- snap 命令的 總結
- Github webhooks 自動部署部落格文章,使用總結【含視訊】GithubWebHook