{"id":19245086,"url":"https://github.com/ek6pr0/hello_world","last_synced_at":"2025-10-08T20:41:49.193Z","repository":{"id":255451082,"uuid":"851510492","full_name":"Ek6pr0/Hello_world","owner":"Ek6pr0","description":null,"archived":false,"fork":false,"pushed_at":"2024-09-04T09:19:54.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-05T04:22:02.905Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ek6pr0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-03T08:23:37.000Z","updated_at":"2024-09-04T09:19:58.000Z","dependencies_parsed_at":"2024-09-05T13:25:15.978Z","dependency_job_id":null,"html_url":"https://github.com/Ek6pr0/Hello_world","commit_stats":null,"previous_names":["ek6pr0/hello_world"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ek6pr0%2FHello_world","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ek6pr0%2FHello_world/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ek6pr0%2FHello_world/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ek6pr0%2FHello_world/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ek6pr0","download_url":"https://codeload.github.com/Ek6pr0/Hello_world/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240331362,"owners_count":19784646,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T17:26:35.554Z","updated_at":"2025-10-08T20:41:44.154Z","avatar_url":"https://github.com/Ek6pr0.png","language":"PowerShell","readme":"# I miei primi passi in Git (italiano)\n\n**Informazione: i segni \u003c\u003e e \\ non devono essere messi, servono solo per informazione.**\n\n## Configurazione di base\n\nInserire il tuo nome e cognome all'interno del comando seguente  \n`$ git config --global user.name \"nome cognome\"`\n\n\nInserire il tuo indirizzo email all'interno del comando seguente  \n`$ git config --global user.email \"indirizzo.email@gmail.com\"`\n\n## Comandi di base\n\nPer inizializzare la Ripository usare il comando:  \n`% git init`\n \nPer controllare lo stato dei commits usare il comando:  \n`$ git status`\n\nPer fare lo \"stage changes\" usare il comando:  `% git add \u003c\\file\u003e`  \nAl posto di \"\u003c\\file\u003e\" inserire uno dei seguenti comandi:  \n- \".\" che aggiunge tutti i file\n- \"Nome del file\" che aggiunge il file con il nome inserito\n\nPer committare digitare:  `$ git commit -m '\"\u003cMotivo del commit\u003e\"`(tenere i \"\")\n\nPer collegare il tuo Git a Github usare:  \n`$ git remote add origin \u003c\\link del Github\u003e`\n\nPer \"spingere\" usare il comando:  \n`$ git push origin main`\n\nPer clonare la repository online usare: \n`$ git clone https://github.com/Ek6pr0/Hello_world.git` \n\nPer \"tirare\" o \"sincronizzare\" una repository clonata usare:  \n`$ git pull`\n\n### Branch\n\n#### Comandi base Branch\n\nPer creare un nuovo Branch:  \n`$ git branch \u003c\\nome Branch\u003e`\n\nPer scambiare da Branch a Branch:  \n`$ git checkout \u003c\\nome Branch\u003e`\n\nPer rinominare un Branch:  \n`$ git branch -m \u003c\\Nome attuale\u003e \u003c\\nuovo nome\u003e`\n\nPer vedere la lista dei Branch:  \n`$ git branch`\n\nPer eliminare un Branch (safe mode):  \n`$ git branch -d \u003c\\nome Branch\u003e`\n\nPer eliminare un Branch (force mode):  \n`$ git branch -D \u003c\\nome Branch\u003e`\n\n#### Comandi avanzati Branch\n\n##### Unire i Branch\n\n1. Andare nel Branch in qui si vuole unire il resto.  \n2. Eseguire il comando: `$ git merge \u003c\\nome del Branch che vuoi unire\u003e`\n3. (Facoltativo) Eliminare la cartella che hai appena unito.\n\n\n# My first steps in GIT (english edition)\n\n**Information: The signs \u003c\u003e and \\ do not have to be insert too,they are only for information.**\n\n## Base Configuration\n\nInsert your first name and last name inside the following command:  \n`$ git config --global user.name \"First name and last name\"`\n\nInsert your E-mail adress inside the following command:  \n`$ git config --global user.email \"E-mail.adress@gmail.com\"`\n\n## Base commands\n\nTo inizialize a new Repository use the following command:  \n`$ git init`\n\nTo check the commits status use the command:  \n`$ git status`\n\nTo stage the files use the command:  \n`$ git add \u003c\\file\u003e`  \ninstead of \u003c\\file\u003e insertuno of the following commands:  \n- \".\" that add all the files\n- \"File name\" that add the file with that name\n\nTo commit digit:  \n`$ git commit -m \u003creason of the commit\u003e`\n\nTo link your Repository to Github use:  \n`$ git remote add origin \u003c\\link of Github\u003e`\n\nTo \"push\"or \"sync\" use the command:  \n`$ git push origin main`\n\nTo clone a online Repository use:  \n`$ git clone https://github.com/Ek6pr0/Hello_world.git`\n\nTo \"pull\" or \"syncronize\" a cloned Repository use:  \n`$ git pull` \n\n### Branch\n\n#### Base commands for Branch\n\nTo create a new Branch:  \n`$ git branch \u003c\\Branch name\u003e`\n\nTo switch from Branch to Branch:  \n`$ git checkout \u003c\\Branch name\u003e`\n\nTo rename a Branch:  \n`$ git push -m \u003c\\current name\u003e \u003c\\new name\u003e`\n\nTo see the Branches list:  \n`$ git branch`\n\nTo delete one Branch (safe mode):  \n`$ git branch -d \u003c\\branch name\u003e`\n\nTo delete one Branch (Force mode):  \n`$ git branch -D \u003c\\branch name\u003e`\n\n#### Advanced commands for Branch\n\n##### Merge the Branches\n\n1. Go inside the Branch you want to merge the others into.\n2. Execute the command: `$ git merge  \u003c\\Branch name that will merge\u003e`\n3. (Optional) Delete the Branch you just merged.\n\n\n## Altro / Other\n\nCredits: *Erik Carina* (RSI)\n\n[Book git](https://git-scm.com/book/en/v2) (english)  \n[RSI site](https://www.rsi.ch/)  \n[Basic Syntax](https://www.markdownguide.org/basic-syntax/)\n[Stackoverflow](https://stackoverflow.com/)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fek6pr0%2Fhello_world","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fek6pr0%2Fhello_world","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fek6pr0%2Fhello_world/lists"}