Skip to content

Instantly share code, notes, and snippets.

@dsrini-open
dsrini-open / aws.xml
Created March 12, 2020 15:34
IntelliJ Idea AWS toolkit plugin - AWS file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="accountSettings">
<option name="activeProfile" value="profile:dev" />
<option name="activeRegion" value="us-west-2" />
<option name="recentlyUsedProfiles">
<list>
<option value="profile:dev" />
</list>
</option>
@dsrini-open
dsrini-open / gitcommands
Last active March 4, 2020 23:45
GIT useful commands
GIT merge:
git checkout master
git pull origin master
git merge <branch>
git push origin master
GIT delete branches:
Remote then local
git push -d origin <branch_name>
git branch -d <branch_name>