- Jun 2022
-
-
ONGs internacionais
Transparëncia internacional é uma ONG? Algo para falar?
-
Governo
Vale falar sobre reuniões com Governo Federal e a indexação de nossas bases no portal federal?
-
Servidores
Falar um pouco sobre o processo de abertura e as nossas fases internas de reuniões?
-
Órgaõs
Orgãos
-
-
-
Nº acessos/downloads
Provavelmente este número ainda é muito baixo. Vale a pena falar dele?
Não seria melhor deixar para falar mais na frente como pontos de melhoria ou incentivo à utilização?
-
Nº conjuntos publicados
antes de hoje?
-
Economias de tempo e esforço para o processo de extração, transformação e carga (ETL) de dados
Não sei se podemos dizer isso.
-
Economia no desenvolvimento e manutenção do sistema.
Muito amplo, não?
-
-
-
com a com a PRODEMGE
com a PRODEMGE
-
-
-
a extração
ajudam na extração?
-
possibilita integrações
possibilita?
-
fo
do
-
-
-
experientes
capacitados???
-
ponto sensível: quase não há demanda da sociedade (e-sic, fale conosco) para abertura de dados
Relacionado com o custo estimado de procura de dado? também não entendi.
-
rotinas. Nesse sentido, faz parte do negócio da DCTA adotar:
Estrutura: Subir "Nesse sentido..." para deixar apenas os dois ítenss abaixo como tópicos.
-
[ ^] custo estimado da procura de informações
Não entendi
-
mais valioso tal dado se torna
mais valioso o mesmo se torna
-
Em outras palavras, evidenciar a qualificação e usos dos mesmos, como por exemplo
Em outras palavras, qualificar o uso dos mesmos, como por exemplo:
-
dados, se estiverem esparsos pelos sítios institucionais
dados se estiverem espalhados por sítos institucionais.
-
sistema de diárias/SCPO
SCPO é um datawarehouse? Não seria um transcional?
-
- Feb 2022
-
www.internalpointers.com www.internalpointers.com
-
You have just told Git to combine all seven commits into the first commit in the list. It's now time to give it a name: your editor pops up again with a default message, made of the names of all the commits you have squashed
Put the message you like.
-
mark all the commits as squashable, except the first/older one: it will be used as a starting point
After
git rebase -i HEAD~N
orgit rebase -i [commit-hash]
your editor of choice will pop up, showing the list of commits you want to merge and you'll mark a commit as squashable by changing the word pick into squash next to it (or s for brevity, as stated in the comments). -
git rebase --interactive [commit-hash]
Another way, where [commit-hash] is the hash of the commit just before the first one you want to rewrite from. So in my example the command would be.
-
The first thing to do is to invoke git to start an interactive rebase session
git rebase --interactive HEAD~N # or -i
where N is the number of commits you want to join, starting from the most recent one. -
In Git you can merge several commits into one with the powerful interactive rebase
"glueing" commits with rebase.
-
It's a handy tool I use quite often; I usually tidy up my working space by grouping together several small intermediate commits into a single lump to push upstream.
Could be a good practice. During work, I'll commit small chunks of work but when the feature is done they are put together to facilitate code review.
-
-
www.tecmint.com www.tecmint.com
-
To list files in a directory and sort them last modified date and time, make use of the -t option as in the command below:
ls -lt
Sort files by modified date ant time. If you want a reverse sorting files based on date and time, you can use the -r option
ls -ltr
-
-
linuxize.com linuxize.com
-
Changing an Older or Multiple Commits
git rebase -i HEAD~N # N is the number of commits
* The command will display the latest X commits in your default text editor; * Move to the lines of the commit message you want to change and replace pick with reword; Save the changes and close the editor; * For each chosen commit, a new text editor window will open; * Change the commit message, save the file, and close the editor; * Use--force
in case of pushed commits. -
Force push to update the history of the remote repository
Use
--force
after ammend a pushed commit. -
Generally, you should avoid amending a commit that is already pushed as it may cause issues to people who based their work on this commit. It is a good idea to consult your fellow developers before changing a pushed commit.
Take care ammending pushed commits
-
Changing the Most Recent Commit
git commit --amend
Tags
Annotators
URL
-