vimwiki/tech/git.wiki

17 lines
194 B
Plaintext
Raw Normal View History

2022-04-28 21:00:01 +00:00
= 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
}}}