先进的操作建立输入和查阅

代码示例

0
0

先进的操作建立输入和查阅

git config --global alias.ac "commit -am"
# git commit -am "testing" //add and commit the code
git ac "testing" //do the same

git commit --amend -m "nice" // will amend the latest commit msg
git log --graph --onlinbe --decorate // will show the commit log in nice way
git bisect start
git bisect bad // find teh healthy branch and work from there
git squash

// technique to reset your local master/feature as smae as//
//the remote main
1.git fetch origin // you fetch the latest
2.git reset --hard origin/master // you reset you local as the remote
//and your , also notice that your changes will be lost
3.git clean -df //to clean untraclked files, artifact and such things
//if you switch out of a branch and want to gon back to it but you forgot its name 
// just use the below command to switch back to it
git checkout -
  
  // commit patch on the file/ part of all the changes of that file
 git add -p file_name // then git will walk you through
  
  //if you are on github and want to make changes on the repo
 1. gott you the repo yiu want to work on
 2. on you kepboard, click '.' and a new window of your browser will open with vs code 
  
  
  // checkout this toturial 
  // https://www.youtube.com/watch?v=Uszj_k0DGsg

类似页面

带有示例的类似页面

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................