Git instructions
admin
GIT Instructions
Make sure git account is setup in VSCode. Need to setup username and email.
Ctrl Shift P: Git clone.
Set up a directory for git cloning
Move your project folders into the git directory
VSCode will show changes.
Uploading in Git
- Stage (local machine)
- Commit (local machine)
- Sync (sending to git server)
If you run into problems: Undo Commit, Undo Stage
Setting userid and password
The following is necessary to do the first time, when you try to push to the server, also called sometime "sync"
git config --global user.name "Your Name" git config --global user.email "your-email@example.com"
Finding out what is your current setting for username and email
git config --global user.name git config --global user.email
First time commit/sync
- Not sure between these two which triggers the credentials challenge
- When it does, you will be taken to a browser to login once
- After that it should remember those credentials
How does one work with git in a team
- Very complicated subject
- And you will get to know as you continue to collaborate
Meanwhile, frequently...
- Frequently...
- Pull first
- Make your changes or new files or folders
- The "source control icon will light up when something new is there
When ready with your changes
- Stage (all) files
- Enter a message and commit
- Sync (pushing to the server)
What can go wrong with pull
- When you pull...
- if there are some files that are added/updated, it will give an error
- So, to resolve, stage them first...
- If you don't want to stage them (like if they are temporary), copy them somewhere else for now [Bigger topic to understand]
- Then you should be able to pull the latest
- Update/change/add
- stage, commit, and sync