Common Repo for all Student of Samajik college 2072 batch
-
Clone the repo
git clone https://github.com/paneru-rajan/samajik-2072.git
-
Goto the project Directory
cd samajik-2072
-
All Student should create their own branch based on their names.
-
First Time:
Example: Adarsha Budathoki will create a branch called Adarsha-Budathoki
``` git checkout -b Adarsha-Budathoki git push origin Adarsha-Budathoki ```
-
Other than 1st time
git checkout Adarsha-Budathoki
- If branch not found then do
git fetch origin Adarsha-Budathoki git checkout Adarsha-Budathoki
- If branch not found then do
-
-
Create Module for each project
- Right-Click on Project
- Click New
- Select Module
- Click Next
- Set Module Name eg
FizzBuzz
- Goto Module folder
- Right click to create a java class
- Write your program and run
-
Add
git add .
-
Commit
git commit -m "Commit Message eg: FizzBuzz Solution"
-
Push
git push origin Adarsha-Budathoki