Tip
git status - Check tracked or untracked project files and the changes.
- Push the Project to Github
- cd C:\...\...\...
- git checkout -b "branch name"
- git add .
- git commit -m "message"
- git push origin "branch name"
-
Create Pull Request in Github
- Go to Github
- Click "New Pull Request"
- Click "Create Pull Request"
-
Merge with Master Files
- Click "Merge Pull Request"
- Click "Confirm"
- Click "Delete Branch"
-
Pull the Merged Files from Github
- Back to Software
- git checkout master
- git pull
- git branch -D "branch name"
Note
Complete Below Steps in Command Prompt
-
Install Upload Large File Github Command
- git lfs install
-
Locate Large File
- cd C:\Users\...
- git lfs track '*.bak'
- git lfs push --all origin main
- git add .
-
Upload to Github
- git commit -m "message"
- git push -u origin master
Note
Complete Below Steps in Command Prompt
-
Locate to Local Repository Folder
- cd ...
- git branch
-
Edit First Commit Date & Time
- git commit --amend --no-edit --date="YYYY-MM-DD HH:MM:SS"
-
Edit Latest Commit Date & Time
- set GIT_AUTHOR_DATE=YYYY-MM-DD HH:MM:SS
- set GIT_COMMITTER_DATE=YYYY-MM-DD HH:MM:SS
- git commit --amend --no-edit