Skip to content

Instantly share code, notes, and snippets.

View badrnezhad's full-sized avatar
💻
Just Coding

Hossein Badrnezhad badrnezhad

💻
Just Coding
View GitHub Profile
@badrnezhad
badrnezhad / add_intellij_launcer
Created February 21, 2023 03:27 — forked from rob-murray/add_intellij_launcer
Add Intellij launcher shortcut and icon for ubuntu
// create file:
sudo vim /usr/share/applications/intellij.desktop
// add the following
[Desktop Entry]
Version=13.0
Type=Application
Terminal=false
Icon[en_US]=/home/rob/.intellij-13/bin/idea.png
Name[en_US]=IntelliJ
@badrnezhad
badrnezhad / Add_Existing_Project_To_Git.md
Created April 20, 2021 03:38 — forked from alexpchin/Add_Existing_Project_To_Git.md
Add Existing Project To Git Repo

#Adding an existing project to GitHub using the command line

Simple steps to add existing project to Github.

1. Create a new repository on GitHub.

In Terminal, change the current working directory to your local project.

##2. Initialize the local directory as a Git repository.

git init