Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

prakharb10/IECSE-App-Summer-21

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

IECSE-App-Summer-21

Welcome to the IECSE App Summer Bootcamp 2021! This repository contains all the resources and solutions to the tasks provided during the summer project.

Instructions -

  • We will be using GitHub to accept and upload all your solutions to the tasks in the summer project

  • You will be creating your own branch to upload your solutions for the project

    • Create your own branch using the the command - git checkout -b <branch-name> and the branch-name should be in the format : <first-name>-<last-name>. For example: git checkout -b Akash-Agarwal, here the -b tag is used to create a new branch.
  • All commits should be made to your own branch. Do not commit to main/master branch. To prevent this always check what branch you're on before committing any changes, the command to check current branch git branch and/or command to checkout(change to) a branch, git checkout <branch-name>.

  • Follow these steps to submit your solutions -

    • Add all unstaged files using the command git add .. The . here means that all the files in the current directory will be staged/added to be committed.
    • To commit to your branch, use the following command: git commit -m "Commit Message".
      The format of the commit message should be as follows : "Task #<task_no> : <task_description>. Mention any errors or issues if any so that we can help you rectify them.
    • To finally push your code, use the following command: git push origin <branch-name>. If you are pushing your code for the first time, you will be prompted to provide your login details before you are able to push your code. If you are unable to push your code, contact any of the mentors or the ManComm members.
  • To pull the solutions to the task, use the following commands :

    git checkout main
    git pull origin main
  • An example of how this will look :

git checkout -b Akash-Agarwal
git checkout Akash-Agarwal        //to check if you are still in your own branch
git add .                           //stage all the files in the directory for commit
git commit -m "Task #00: Description"
git push origin Akash-Agarwal     //this pushes the code to your own branch
  • All the solutions will be posted in the main branch.

  • All the tasks and resources for the summer project will be posted in the Wiki.

About

IECSE App Summer Bootcamp 2021

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published