Skip to content

Instantly share code, notes, and snippets.

@isacmoura
Forked from AlbertoMonteiro/.gitconfig
Created June 1, 2020 17:35
Show Gist options
  • Save isacmoura/caf16f79e3e9ad81c10123f17fb2542b to your computer and use it in GitHub Desktop.
Save isacmoura/caf16f79e3e9ad81c10123f17fb2542b to your computer and use it in GitHub Desktop.

Revisions

  1. @AlbertoMonteiro AlbertoMonteiro revised this gist Dec 6, 2018. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion chocolateyInstall.bat
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,5 @@
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    choco feature enable -n allowGlobalConfirmation
    choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
    choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl

    choco install awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
  2. @AlbertoMonteiro AlbertoMonteiro revised this gist Dec 1, 2017. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion fasdfasd
    Original file line number Diff line number Diff line change
    @@ -1 +0,0 @@
    asdfsdf
  3. @AlbertoMonteiro AlbertoMonteiro revised this gist Dec 1, 2017. 5 changed files with 8 additions and 31 deletions.
    32 changes: 1 addition & 31 deletions gistfile1.md → .gitconfig
    Original file line number Diff line number Diff line change
    @@ -1,19 +1,3 @@
    ## Chocolatey configuration

    ```
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    choco feature enable -n allowGlobalConfirmation
    ```

    ## Chocolatey install command

    ```
    choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
    ```

    ## Git Config

    ```
    [user]
    name = Alberto Monteiro
    email = [email protected]
    @@ -52,18 +36,4 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    [mergetool "vsdiffmerge"]
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m
    keepBackup = false
    trustExitCode = true
    ```

    ## NPM Packages

    ```
    npm install -g typescript gulp aurelia-cli
    ```

    ## Powershell stuff

    ```
    iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
    scoop install concfg
    ```
    trustExitCode = true
    3 changes: 3 additions & 0 deletions chocolateyInstall.bat
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    choco feature enable -n allowGlobalConfirmation
    choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
    1 change: 1 addition & 0 deletions fasdfasd
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    asdfsdf
    1 change: 1 addition & 0 deletions npm install.bat
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    npm install -g typescript gulp aurelia-cli
    2 changes: 2 additions & 0 deletions psinstall.ps1
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,2 @@
    iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
    scoop install concfg
  4. @AlbertoMonteiro AlbertoMonteiro revised this gist Oct 27, 2017. 1 changed file with 2 additions and 9 deletions.
    11 changes: 2 additions & 9 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -15,8 +15,8 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin

    ```
    [user]
    name = Alberto Monteiro
    email = [email protected]
    name = Alberto Monteiro
    email = [email protected]
    [core]
    preloadindex = true
    fscache = true
    @@ -34,13 +34,6 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    up = !git pull --rebase --prune $@ && git submodule update --init --recursive
    cob = checkout -b
    cm = !git add -A && git commit -m
    save = !git add -A && git commit -m 'SAVEPOINT'
    wip = !git add -u && git commit -m "WIP"
    undo = reset HEAD~1 --mixed
    wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
    bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
    bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f"
    previouscommitfrom = "git log --pretty=%P -n 1"
    [gc]
    auto = 256
    [push]
  5. @AlbertoMonteiro AlbertoMonteiro revised this gist Oct 27, 2017. 1 changed file with 4 additions and 2 deletions.
    6 changes: 4 additions & 2 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -15,14 +15,16 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin

    ```
    [user]
    name = Alberto Monteiro
    email = [email protected]
    name = Alberto Monteiro
    email = [email protected]
    [core]
    preloadindex = true
    fscache = true
    autocrlf = true
    editor = code -n -w
    [alias]
    fetchall = fetch --all --prune
    lognice = log --pretty --oneline -10
    st = status
    pr = pull
    co = checkout
  6. @AlbertoMonteiro AlbertoMonteiro revised this gist Sep 20, 2017. 1 changed file with 8 additions and 5 deletions.
    13 changes: 8 additions & 5 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,3 @@
    ## Sublime Theme

    https://github.com/mrmartineau/SetiUI-Icons-Sublime

    ## Chocolatey configuration

    ```
    @@ -67,5 +63,12 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    ## NPM Packages

    ```
    npm install -g typescript gulp jspm
    npm install -g typescript gulp aurelia-cli
    ```

    ## Powershell stuff

    ```
    iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
    scoop install concfg
    ```
  7. @AlbertoMonteiro AlbertoMonteiro revised this gist May 26, 2017. 1 changed file with 10 additions and 4 deletions.
    14 changes: 10 additions & 4 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -11,13 +11,13 @@ choco feature enable -n allowGlobalConfirmation

    ## Chocolatey install command

    ````
    ```
    choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
    ````
    ```

    ## Git Config

    ````
    ```
    [user]
    name = Alberto Monteiro
    email = [email protected]
    @@ -62,4 +62,10 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m
    keepBackup = false
    trustExitCode = true
    ````
    ```

    ## NPM Packages

    ```
    npm install -g typescript gulp jspm
    ```
  8. @AlbertoMonteiro AlbertoMonteiro revised this gist May 26, 2017. 1 changed file with 10 additions and 10 deletions.
    20 changes: 10 additions & 10 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -25,7 +25,7 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    preloadindex = true
    fscache = true
    autocrlf = true
    editor = code -n -w
    editor = code -n -w
    [alias]
    st = status
    pr = pull
    @@ -48,18 +48,18 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    [push]
    default = matching
    [diff]
    tool = vsdiffmerge
    tool = vsdiffmerge
    [difftool]
    prompt = true
    prompt = true
    [difftool "vsdiffmerge"]
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t
    keepBackup = false
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t
    keepBackup = false
    [merge]
    tool = vsdiffmerge
    tool = vsdiffmerge
    [mergetool]
    prompt = true
    prompt = true
    [mergetool "vsdiffmerge"]
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m
    keepBackup = false
    trustExitCode = true
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m
    keepBackup = false
    trustExitCode = true
    ````
  9. @AlbertoMonteiro AlbertoMonteiro revised this gist May 26, 2017. 1 changed file with 16 additions and 5 deletions.
    21 changes: 16 additions & 5 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -18,18 +18,14 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    ## Git Config

    ````
    git config --global user.name "Alberto Monteiro"
    git config --global user.email [email protected]
    git config --global core.editor "code -n -w"
    [user]
    name = Alberto Monteiro
    email = [email protected]
    [core]
    preloadindex = true
    fscache = true
    autocrlf = true
    editor = subl -n -w
    editor = code -n -w
    [alias]
    st = status
    pr = pull
    @@ -51,4 +47,19 @@ git config --global core.editor "code -n -w"
    auto = 256
    [push]
    default = matching
    [diff]
    tool = vsdiffmerge
    [difftool]
    prompt = true
    [difftool "vsdiffmerge"]
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t
    keepBackup = false
    [merge]
    tool = vsdiffmerge
    [mergetool]
    prompt = true
    [mergetool "vsdiffmerge"]
    cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m
    keepBackup = false
    trustExitCode = true
    ````
  10. @AlbertoMonteiro AlbertoMonteiro revised this gist May 4, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,7 @@ choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandlin
    ````
    git config --global user.name "Alberto Monteiro"
    git config --global user.email [email protected]
    git config --global core.editor "subl -n -w"
    git config --global core.editor "code -n -w"
    [user]
    name = Alberto Monteiro
  11. @AlbertoMonteiro AlbertoMonteiro revised this gist May 4, 2017. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -45,7 +45,8 @@ git config --global core.editor "subl -n -w"
    undo = reset HEAD~1 --mixed
    wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
    bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
    bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f"
    bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f"
    previouscommitfrom = "git log --pretty=%P -n 1"
    [gc]
    auto = 256
    [push]
  12. @AlbertoMonteiro AlbertoMonteiro revised this gist Dec 9, 2016. 1 changed file with 1 addition and 18 deletions.
    19 changes: 1 addition & 18 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -5,17 +5,14 @@ https://github.com/mrmartineau/SetiUI-Icons-Sublime
    ## Chocolatey configuration

    ```
    setx ChocolateyInstall D:\ChocolateyInstall /m
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    choco feature enable -n allowGlobalConfirmation
    set path="%path%;C:\Program Files\Sublime Text 3;
    setx path "%path%" /m
    ```

    ## Chocolatey install command

    ````
    choco install dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl awscli awssdk-tools
    choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
    ````

    ## Git Config
    @@ -53,18 +50,4 @@ git config --global core.editor "subl -n -w"
    auto = 256
    [push]
    default = matching
    ````

    https://gitcredentialstore.codeplex.com/


    ## Git Alias

    ````
    [alias]
    st = status
    pr = pull
    recommit = commit -a --amend --no-edit
    upStg = !git checkout aprovado && git merge develop && git checkout staging && git merge develop && git checkout develop
    atualizatudo = !git fetch --prune && git checkout develop && git pull && git checkout aprovado && git pull && git checkout staging && git pull && git checkout master && git pull && git checkout develop
    ````
  13. @AlbertoMonteiro AlbertoMonteiro revised this gist Jun 14, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,7 @@ setx path "%path%" /m
    ## Chocolatey install command

    ````
    choco install mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl awscli awssdk-tools
    choco install dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl awscli awssdk-tools
    ````

    ## Git Config
  14. @AlbertoMonteiro AlbertoMonteiro revised this gist Apr 1, 2016. 1 changed file with 0 additions and 5 deletions.
    5 changes: 0 additions & 5 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,3 @@
    ```
    Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
    Enable-RemoteDesktop
    ```

    ## Sublime Theme

    https://github.com/mrmartineau/SetiUI-Icons-Sublime
  15. @AlbertoMonteiro AlbertoMonteiro revised this gist Apr 1, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,7 @@ setx path "%path%" /m
    ## Chocolatey install command

    ````
    choco install mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl awscli
    choco install mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl awscli awssdk-tools
    ````

    ## Git Config
  16. @AlbertoMonteiro AlbertoMonteiro revised this gist Apr 1, 2016. 1 changed file with 1 addition and 18 deletions.
    19 changes: 1 addition & 18 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -17,27 +17,10 @@ set path="%path%;C:\Program Files\Sublime Text 3;
    setx path "%path%" /m
    ```

    ## Chocolatey install packages

    * 7zip
    * adobereader
    * markdownpad2
    * fiddler4
    * git
    * nodejs.install
    * notepad2
    * python
    * scriptcs
    * SublimeText3
    * SublimeText3.PackageControl
    * conemu
    * mssqlservermanagementstudio2014express
    * mssqlserver2014express

    ## Chocolatey install command

    ````
    choco install mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl
    choco install mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl awscli
    ````

    ## Git Config
  17. @AlbertoMonteiro AlbertoMonteiro revised this gist Apr 1, 2016. 1 changed file with 24 additions and 17 deletions.
    41 changes: 24 additions & 17 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -37,7 +37,7 @@ setx path "%path%" /m
    ## Chocolatey install command

    ````
    choco install 7zip adobereader markdownpad2 fiddler4 git nodejs.install notepad2 python scriptcs SublimeText3 SublimeText3.PackageControl conemu mssqlservermanagementstudio2014express mssqlserver2014express
    choco install mssqlservermanagementstudio2014express mssqlserver2014express 7zip fiddler4 git.install nodejs.install notepad2 scriptcs SublimeText3 SublimeText3.PackageControl
    ````

    ## Git Config
    @@ -48,26 +48,33 @@ git config --global user.email [email protected]
    git config --global core.editor "subl -n -w"
    [user]
    name = Alberto Monteiro
    email = [email protected]
    name = Alberto Monteiro
    email = [email protected]
    [core]
    preloadindex = true
    fscache = true
    autocrlf = true
    editor = subl -n -w
    preloadindex = true
    fscache = true
    autocrlf = true
    editor = subl -n -w
    [alias]
    st = status
    pr = pull
    co = checkout
    up = pull --rebase --prune
    recommit = commit -a --amend --no-edit
    upStg = !git checkout aprovado && git merge develop && git checkout staging && git merge develop && git checkout develop
    atualizatudo = !git checkout develop && git pull --rebase --prune && git checkout aprovado && git pull --rebase && git checkout staging && git pull --rebase && git checkout master && git pull --rebase && git checkout develop
    bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
    st = status
    pr = pull
    co = checkout
    up = pull --rebase --prune
    recommit = commit -a --amend --no-edit
    ec = config --global -e
    up = !git pull --rebase --prune $@ && git submodule update --init --recursive
    cob = checkout -b
    cm = !git add -A && git commit -m
    save = !git add -A && git commit -m 'SAVEPOINT'
    wip = !git add -u && git commit -m "WIP"
    undo = reset HEAD~1 --mixed
    wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
    bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
    bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f"
    [gc]
    auto = 256
    auto = 256
    [push]
    default = matching
    default = matching
    ````

    https://gitcredentialstore.codeplex.com/
  18. @AlbertoMonteiro AlbertoMonteiro revised this gist Oct 31, 2015. 1 changed file with 22 additions and 0 deletions.
    22 changes: 22 additions & 0 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -46,6 +46,28 @@ choco install 7zip adobereader markdownpad2 fiddler4 git nodejs.install notepad2
    git config --global user.name "Alberto Monteiro"
    git config --global user.email [email protected]
    git config --global core.editor "subl -n -w"
    [user]
    name = Alberto Monteiro
    email = [email protected]
    [core]
    preloadindex = true
    fscache = true
    autocrlf = true
    editor = subl -n -w
    [alias]
    st = status
    pr = pull
    co = checkout
    up = pull --rebase --prune
    recommit = commit -a --amend --no-edit
    upStg = !git checkout aprovado && git merge develop && git checkout staging && git merge develop && git checkout develop
    atualizatudo = !git checkout develop && git pull --rebase --prune && git checkout aprovado && git pull --rebase && git checkout staging && git pull --rebase && git checkout master && git pull --rebase && git checkout develop
    bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
    [gc]
    auto = 256
    [push]
    default = matching
    ````

    https://gitcredentialstore.codeplex.com/
  19. @AlbertoMonteiro AlbertoMonteiro revised this gist Aug 27, 2015. 1 changed file with 15 additions and 1 deletion.
    16 changes: 15 additions & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -13,6 +13,8 @@ https://github.com/mrmartineau/SetiUI-Icons-Sublime
    setx ChocolateyInstall D:\ChocolateyInstall /m
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    choco feature enable -n allowGlobalConfirmation
    set path="%path%;C:\Program Files\Sublime Text 3;
    setx path "%path%" /m
    ```

    ## Chocolatey install packages
    @@ -46,4 +48,16 @@ git config --global user.email [email protected]
    git config --global core.editor "subl -n -w"
    ````

    https://gitcredentialstore.codeplex.com/
    https://gitcredentialstore.codeplex.com/


    ## Git Alias

    ````
    [alias]
    st = status
    pr = pull
    recommit = commit -a --amend --no-edit
    upStg = !git checkout aprovado && git merge develop && git checkout staging && git merge develop && git checkout develop
    atualizatudo = !git fetch --prune && git checkout develop && git pull && git checkout aprovado && git pull && git checkout staging && git pull && git checkout master && git pull && git checkout develop
    ````
  20. @AlbertoMonteiro AlbertoMonteiro revised this gist Aug 2, 2015. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -21,7 +21,6 @@ choco feature enable -n allowGlobalConfirmation
    * adobereader
    * markdownpad2
    * fiddler4
    * filezilla
    * git
    * nodejs.install
    * notepad2
    @@ -36,7 +35,7 @@ choco feature enable -n allowGlobalConfirmation
    ## Chocolatey install command

    ````
    choco install 7zip adobereader fiddler4 filezilla git nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl conemu mssqlserver2014express mssqlservermanagementstudio2014express markdownpad2
    choco install 7zip adobereader markdownpad2 fiddler4 git nodejs.install notepad2 python scriptcs SublimeText3 SublimeText3.PackageControl conemu mssqlservermanagementstudio2014express mssqlserver2014express
    ````

    ## Git Config
  21. @AlbertoMonteiro AlbertoMonteiro revised this gist Aug 2, 2015. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -27,7 +27,6 @@ choco feature enable -n allowGlobalConfirmation
    * notepad2
    * python
    * scriptcs
    * skype
    * SublimeText3
    * SublimeText3.PackageControl
    * conemu
  22. @AlbertoMonteiro AlbertoMonteiro revised this gist Aug 2, 2015. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -10,6 +10,8 @@ https://github.com/mrmartineau/SetiUI-Icons-Sublime
    ## Chocolatey configuration

    ```
    setx ChocolateyInstall D:\ChocolateyInstall /m
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
    choco feature enable -n allowGlobalConfirmation
    ```

  23. @AlbertoMonteiro AlbertoMonteiro revised this gist Aug 2, 2015. No changes.
  24. @AlbertoMonteiro AlbertoMonteiro revised this gist Aug 2, 2015. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -3,6 +3,10 @@ Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFile
    Enable-RemoteDesktop
    ```

    ## Sublime Theme

    https://github.com/mrmartineau/SetiUI-Icons-Sublime

    ## Chocolatey configuration

    ```
  25. @AlbertoMonteiro AlbertoMonteiro revised this gist Jul 2, 2015. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -40,4 +40,6 @@ choco install 7zip adobereader fiddler4 filezilla git nodejs.install notepad2 py
    git config --global user.name "Alberto Monteiro"
    git config --global user.email [email protected]
    git config --global core.editor "subl -n -w"
    ````
    ````

    https://gitcredentialstore.codeplex.com/
  26. @AlbertoMonteiro AlbertoMonteiro revised this gist Jun 18, 2015. 1 changed file with 18 additions and 2 deletions.
    20 changes: 18 additions & 2 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,16 @@
    ```
    Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
    Enable-RemoteDesktop
    ```

    ## Chocolatey configuration

    ```
    choco feature enable -n allowGlobalConfirmation
    ```

    ## Chocolatey install packages

    * 7zip
    * adobereader
    * markdownpad2
    @@ -18,10 +24,20 @@ choco feature enable -n allowGlobalConfirmation
    * skype
    * SublimeText3
    * SublimeText3.PackageControl
    * console2
    * conemu
    * mssqlservermanagementstudio2014express
    * mssqlserver2014express

    ## Chocolatey install command

    ````
    choco install 7zip adobereader fiddler4 filezilla git nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl conemu mssqlserver2014express mssqlservermanagementstudio2014express markdownpad2
    ````

    ## Git Config

    ````
    choco install 7zip adobereader markdownpad2 fiddler4 filezilla git nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2 mssqlserver2014express mssqlservermanagementstudio2014express
    git config --global user.name "Alberto Monteiro"
    git config --global user.email [email protected]
    git config --global core.editor "subl -n -w"
    ````
  27. @AlbertoMonteiro AlbertoMonteiro revised this gist May 7, 2015. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -6,13 +6,11 @@ choco feature enable -n allowGlobalConfirmation
    ```

    * 7zip
    * 7zip.install
    * adobereader
    * markdownpad2
    * fiddler4
    * filezilla
    * git
    * git.install
    * nodejs.install
    * notepad2
    * python
    @@ -25,5 +23,5 @@ choco feature enable -n allowGlobalConfirmation
    * mssqlserver2014express

    ````
    choco install 7zip 7zip.install adobereader markdownpad2 fiddler4 filezilla git git.install nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2 mssqlserver2014express mssqlservermanagementstudio2014express
    choco install 7zip adobereader markdownpad2 fiddler4 filezilla git nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2 mssqlserver2014express mssqlservermanagementstudio2014express
    ````
  28. @AlbertoMonteiro AlbertoMonteiro revised this gist Apr 18, 2015. 2 changed files with 29 additions and 25 deletions.
    29 changes: 29 additions & 0 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    ```
    Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
    Enable-RemoteDesktop
    choco feature enable -n allowGlobalConfirmation
    ```

    * 7zip
    * 7zip.install
    * adobereader
    * markdownpad2
    * fiddler4
    * filezilla
    * git
    * git.install
    * nodejs.install
    * notepad2
    * python
    * scriptcs
    * skype
    * SublimeText3
    * SublimeText3.PackageControl
    * console2
    * mssqlservermanagementstudio2014express
    * mssqlserver2014express

    ````
    choco install 7zip 7zip.install adobereader markdownpad2 fiddler4 filezilla git git.install nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2 mssqlserver2014express mssqlservermanagementstudio2014express
    ````
    25 changes: 0 additions & 25 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,25 +0,0 @@
    Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
    Enable-RemoteDesktop

    choco feature enable -n allowGlobalConfirmation

    cinst 7zip
    cinst 7zip.install
    cinst adobereader
    cinst markdownpad2
    cinst fiddler4
    cinst filezilla
    cinst git
    cinst git.install
    cinst nodejs.install
    cinst notepad2
    cinst python
    cinst scriptcs
    cinst skype
    cinst SublimeText3
    cinst SublimeText3.PackageControl
    cisnt console2
    cinst mssqlservermanagementstudio2014express
    cinst mssqlserver2014express

    choco install 7zip 7zip.install adobereader markdownpad2 fiddler4 filezilla git git.install nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2 mssqlserver2014express mssqlservermanagementstudio2014express
  29. @AlbertoMonteiro AlbertoMonteiro revised this gist Apr 18, 2015. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,8 @@
    Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
    Enable-RemoteDesktop

    choco feature enable -n allowGlobalConfirmation

    cinst 7zip
    cinst 7zip.install
    cinst adobereader
  30. @AlbertoMonteiro AlbertoMonteiro revised this gist Jan 23, 2015. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -17,5 +17,7 @@ cinst skype
    cinst SublimeText3
    cinst SublimeText3.PackageControl
    cisnt console2
    cinst mssqlservermanagementstudio2014express
    cinst mssqlserver2014express

    choco install 7zip 7zip.install adobereader markdownpad2 fiddler4 filezilla git git.install nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2
    choco install 7zip 7zip.install adobereader markdownpad2 fiddler4 filezilla git git.install nodejs.install notepad2 python scriptcs skype SublimeText3 SublimeText3.PackageControl console2 mssqlserver2014express mssqlservermanagementstudio2014express