/samajik-2072

Common Repo for all Student of Samajik college 2072 batch

Primary LanguageJava

Samajik-2072

Common Repo for all Student of Samajik college 2072 batch

Process To Follow

  1. Clone the repo

    git clone https://github.com/paneru-rajan/samajik-2072.git 
    
  2. Goto the project Directory

    cd samajik-2072
    
  3. All Student should create their own branch based on their names.

    1. First Time:

      Example: Adarsha Budathoki will create a branch called Adarsha-Budathoki

       ```
       git checkout -b Adarsha-Budathoki
       git push origin Adarsha-Budathoki
       ```
      
    2. Other than 1st time

      git checkout Adarsha-Budathoki
      
      1. If branch not found then do
        git fetch origin Adarsha-Budathoki
        git checkout Adarsha-Budathoki
        
  4. Create Module for each project

    1. Right-Click on Project
    2. Click New
    3. Select Module
    4. Click Next
    5. Set Module Name eg FizzBuzz
    6. Goto Module folder
    7. Right click to create a java class
    8. Write your program and run
  5. Add

    git add .
    
  6. Commit

    git commit -m "Commit Message eg: FizzBuzz Solution"
    
  7. Push

    git push origin Adarsha-Budathoki