An open API service indexing awesome lists of open source software.

https://github.com/atiilla/javadevjan


https://github.com/atiilla/javadevjan

Last synced: 3 months ago
JSON representation

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