mirror of
https://github.com/github/gitignore
synced 2024-11-25 21:24:23 +01:00
Adicionado arquivo Lazarus.gitignore
This commit is contained in:
parent
4488915eec
commit
af88d8e001
30
Lazarus.gitignore
Normal file
30
Lazarus.gitignore
Normal file
@ -0,0 +1,30 @@
|
||||
# Lazarus compiler-generated binaries (safe to delete)
|
||||
*.exe
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
# *.lrs
|
||||
*.res
|
||||
*.compiled
|
||||
*.dbg
|
||||
*.ppu
|
||||
*.o
|
||||
*.or
|
||||
*.a
|
||||
|
||||
# Lazarus autogenerated files (duplicated info)
|
||||
*.rst
|
||||
*.rsj
|
||||
*.lrt
|
||||
|
||||
# Lazarus local files (user-specific info)
|
||||
*.lps
|
||||
|
||||
# Lazarus backups and unit output folders.
|
||||
# These can be changed by user in Lazarus/project options.
|
||||
backup/
|
||||
*.bak
|
||||
lib/
|
||||
|
||||
# Application bundle for Mac OS
|
||||
*.app/
|
26
pushmain.sh
Executable file
26
pushmain.sh
Executable file
@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
TextoCommit="$1"
|
||||
|
||||
# Associa o repositório remoto ao repositório local.
|
||||
git remote add origin git@github.com:paulosspacheco/gitignore.git
|
||||
|
||||
# Renomeie o branch atual para main
|
||||
# O comando branch -M não precisa ser feito a todo momento, porque o git sempre envia para
|
||||
# o ultimo ramo selecionando.
|
||||
git branch -M main
|
||||
|
||||
# Este comando pode ser executado várias vezes antes de um commit.
|
||||
git add .
|
||||
|
||||
# Use o <msg> fornecido como a mensagem de confirmação.
|
||||
git commit -a -m "$TextoCommit"
|
||||
|
||||
# Envia as alterações locais para o repositório remoto.
|
||||
git push -u origin main
|
||||
|
||||
# imprime o status atual do repositório
|
||||
git status
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user