Update for 28-04-22 17:00

This commit is contained in:
Tyler Perkins 2022-04-28 17:00:01 -04:00
parent 24c9d9915b
commit cc79b5631f
2 changed files with 17 additions and 0 deletions

View File

@ -19,6 +19,7 @@
* [[cgdb]] - Vim like front end for the GNU Debugger
* [[make|Make]] - Automate compiling
* [[vim]] - Text editor
* [[git]] - Version controll
* [[qemu]] - Virtual machine
* [[Docker]] - Psudeo VMs

16
tech/git.wiki Normal file
View File

@ -0,0 +1,16 @@
= 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
}}}