gemrey13 / IT-Paradigm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IT-Paradigm


How to Start

  1. You need to create a Github account
  2. You need to fork this repository
  3. You need to install GIT in your PC or in your mobile phone Tutorial
  4. You need to execute this git branch <Your Github_name> example is git branch RyannKim327

Git Installation

PC

  1. Download and install Git Link
  2. Go to Command Prompt or in the terminal of your vscode and start using Git
  3. And login your github account

Mobile Phone

  1. Download and install Termux Link
  2. Enable the storage permission using termux-setup-storage
  3. Next is install git thru this commands:
apt update
apt upgrade
api install git
  1. Then go to your phone storage using the cd and ls method like
cd ../../../../../..
cd /storage/emulated/0/
  1. 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
  1. Next is go to the directory of your paradigm using cd IT-Paradigm command
  2. 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
  1. 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

About