17 lines
194 B
Plaintext
17 lines
194 B
Plaintext
= Git =
|
|
|
|
Git is the best version controll in the world
|
|
|
|
|
|
== Checkout a new branch ==
|
|
|
|
{{{
|
|
git checkout -b new_branch_name
|
|
}}}
|
|
|
|
== Delete a branch ==
|
|
|
|
{{{
|
|
git branch -d local_branch_name
|
|
}}}
|