Site Tools


Hotfix release available: 2025-05-14b "Librarian". upgrade now! [56.2] (what's this?)
Hotfix release available: 2025-05-14a "Librarian". upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian". upgrade now! [56] (what's this?)
Hotfix release available: 2024-02-06b "Kaos". upgrade now! [55.2] (what's this?)
Hotfix release available: 2024-02-06a "Kaos". upgrade now! [55.1] (what's this?)
New release available: 2024-02-06 "Kaos". upgrade now! [55] (what's this?)
Hotfix release available: 2023-04-04b "Jack Jackrum". upgrade now! [54.2] (what's this?)
git-commandes-courantes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
git-commandes-courantes [2022/05/18 08:46] 82.65.196.74git-commandes-courantes [2024/02/23 16:29] (current) 195.221.243.134
Line 35: Line 35:
 $ git pull origin master $ git pull origin master
 </code> </code>
 +
 +==="Veuillez valider ou remiser vos modifications avant la fusion"===
 +<code>
 +$ git checkout
 +</code>
 +
 +Crer une branche 
 +<code>
 +git branch testing
 +</code>
 +Basculer sur la nouvelle branche testing
 +<code>
 +git checkout testing
 +</code>
 +Pour créer et basculer
 +<code>
 +git checkout -b testing
 +</code>
 +Pour reporter les changement fait dans testing dans la branche master
 +<code>
 +$ git checkout master
 +$ git merge testing
 +</code>
 +Effacer la branche testing:
 +git branch -d testing
 +
 +
  
git-commandes-courantes.1652863568.txt.gz · Last modified: 2023/09/28 12:26 (external edit)