Java Practice Lesson for Somali Students
# Java2
Java Practice Lesson for Somali Students
Steps To SettUp GIT
1.Doawnload GITHUB FROM (
git-scm.com)
2.Intall Doanloaded GIT in your machine.
3.git config --global user.name "Your Name" (In mycase :git config --global user.name "Alasow")
4.git config --global user.email "your.email@example.com" (in mycase :git config --global user.email "alasow029@gmail.com")
5.git init
6.git remote add origin
github.com
7.git add .
8.git commit -m "Initial Java2 commit"
9.git branch -M main
10.git config --global http.sslBackend "openssl"
11.git pull origin main --rebase
11.git push -u origin main
////////////////////////////To add new changes you made in your code ( Stage Changes) ////////////////////////////
1. git add .
2. git commit -m "Your commit message"
3. git push origin main