- You need to create a Github account
- You need to fork this repository
- You need to install GIT in your PC or in your mobile phone Tutorial
- You need to execute this
git branch <Your Github_name>
example isgit branch RyannKim327
PC
- Download and install Git Link
- Go to Command Prompt or in the terminal of your vscode and start using Git
- And login your github account
Mobile Phone
- Download and install Termux Link
- Enable the storage permission using
termux-setup-storage
- Next is install git thru this commands:
apt update
apt upgrade
api install git
- Then go to your phone storage using the cd and ls method like
cd ../../../../../..
cd /storage/emulated/0/
- Next is you need to git clone your forked repo using:
git clone [link here]
example is:
git clone https://github.com/RyannKim27/IT-Paradigm
- Next is go to the directory of your paradigm using
cd IT-Paradigm
command - Then use
git config --global --add safe.directory [Repo Directory]
to start example is
git config --global --add safe.directory /storage/emulated/0/IT-Paradigm
- Then use
git add .
and start coding now
Git Commit
git commit -m "Your changes"
Git Pull and Push Git Pull
git pull
Git Push
git push origin <branch>
Where branch is your branch name, the default is main