https://github.com/atiilla/javadevjan
https://github.com/atiilla/javadevjan
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/atiilla/javadevjan
- Owner: atiilla
- Created: 2022-01-20T07:11:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-28T13:01:19.000Z (over 3 years ago)
- Last Synced: 2025-04-19T20:14:18.782Z (6 months ago)
- Language: Java
- Size: 615 KB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java EE Development Class - January
* Git tool & basics commands
* Data types & Variables# Getting Started with Git
* Download git tool: https://git-scm.com/downloads# Github first Config
* git config --global user.name "githubUsername"
* git config --global user.email "youremail@gmail.com"# Github Clone of Repository
* git clone https://github.com/username/Repositoryname localFolderName# Github push project to repo
* git init
* git add .
* git commit -m "commitMessage"
* git branch -M main
* git add remote origin https://github.com/username/YourRepository.git
* git push -u origin main
# Github Update of Repo
* git add * (or single file which is updated)
* git commit -m "commit Message"
* git push -u origin master