Files
GitGuide/README.txt
2026-02-12 15:20:50 -08:00

31 lines
1.1 KiB
Plaintext

Welcome to my self hosted git server
things you should know about git:
- git branch
- Used to check which branch you are on, and to create/delete them. Each repo will have a set of branches, main should be the primary branch where everything is tested that it works before hand, any secondary branches are to write code before pushing it to main so that you have a place to store it publicly
- git checkout
- Used to change which branch you are on.
- git clone
- Used to grab a initial install of a repo.
- git commit
- Used to commit which changes you want to push to the server.
- git add
- Locally logs which files you are going to try to commit
- git push
- Put your commits onto the server
- git pull
- Grabs files from the server and replaces your files
- git merge
- attempts to merge the changes from one branch to the current branch, a conflict will arise if the same line is changed
Notes about this specific git server
- Sign ups are disabled, contact an admin (me) if you want an account
- I do not have a static ip adress, so if you encounter an error in which you cannot find the server, my ip may have changed but it is unlikely