zdbru / DVP1--Notes

Project & Portfolio!
0 stars 0 forks source link

Research: Code Repositories #6

Closed zdbru closed 4 years ago

zdbru commented 4 years ago

You can have any number of repos on your computer each stored in their own folder. Each repo on your system is independent. You dont have to use the same repo you can have multiple throughout your system. there are several git commands in Terminal that I learned this month. git status - lists files that havent been committed git add . - This stages all files that have been changed and are ready to be committed git commit -m - This commit and messages commits all staged files ready. git push - this pushes all local changes to the online version history and updates.

zdbru commented 4 years ago

DONE