Skip to content

Instantly share code, notes, and snippets.

View Danielapariona's full-sized avatar
🏠
Working from home

Daniela Pariona Coronado Danielapariona

🏠
Working from home
View GitHub Profile
#!/bin/ruby
n = 23
nro_uno = 0
b = n.to_s(2)
for i in 0..b.length-1
if b[i] == "1"
nro_uno += 1
end
end
git clone <linkProject>
cd <Project>
git status
git checkout -b "name-branch"
git checkout name-branch
git add <filename>
git add .
git commit -m "Commit message"
git push origin <branchName>
git push origin master
git init
git add .
git commit -m "First commit"
git remote add origin git@github.com:Danielapariona/Prueba.git
git push -u origin master