ankushbhardwxj / ConcertoWebEditor

Instantaneous Concerto code generation from UML diagram editor.
https://concerto-editor.netlify.app/
2 stars 1 forks source link

Deleted Redundant files #5

Closed Sushmita143 closed 4 years ago

ankushbhardwxj commented 4 years ago

@Sushmita143 - Well done ! A quick note: I see you have made a commit for each file above. That's a lot of hard work, use the following next time.

# after making all your required changes 
git status    # shows all the files you've made changes to
git add -A    # adds all those files which are shown in red (turns to green after being added)
git commit -m "made all changes required" 
git push origin <branch-name> 

Also, you forgot to create a branch. You will see above that the pull request says Sushmita143: master,

git branch    # check which branch you are on
git checkout -b newBranch
# Make all changes and follow above procedure 
Sushmita143 commented 4 years ago

@Sushmita143 - Well done ! A quick note: I see you have made a commit for each file above. That's a lot of hard work, use the following next time.

# after making all your required changes 
git status    # shows all the files you've made changes to
git add -A    # adds all those files which are shown in red (turns to green after being added)
git commit -m "made all changes required" 
git push origin <branch-name> 

Also, you forgot to create a branch. You will see above that the pull request says Sushmita143: master,

git branch    # check which branch you are on
git checkout -b newBranch
# Make all changes and follow above procedure 

Okay, next time!