Skip to content

Instantly share code, notes, and snippets.

View fernandoseguim's full-sized avatar
😎
Enjoy the journey

Fernando Seguim fernandoseguim

😎
Enjoy the journey
View GitHub Profile
@jmarolf
jmarolf / editorconfig.md
Last active June 16, 2025 23:46
List of all options and how they may be implemented in editorconfig

Advanced

editorconfig name possible values
dotnet_sort_system_directives_first true , false

Indentation Options

editorconfig name possible values
csharp_indent_block_contents true , false
csharp_indent_braces true , false
@rdeavila
rdeavila / git-update-fork.sh
Last active July 26, 2025 20:15
Git: como atualizar um fork com as mudanças do original?
#!/bin/bash
# Adicione um novo remote; pode chamá-lo de "upstream":
git remote add upstream https://github.com/usuario/projeto.git
# Obtenha todos os branches deste novo remote,
# como o upstream/master por exemplo:
git fetch upstream