I did git clone to a repository hosted on github:
$ git clone https://github.com/USUARIO/REPOSITORIO.git
Then I did a git fetch --all to move to the branch dev :
$ git fetch --all
$ git checkout dev
To make sure I w...
There is a project in Git which I have to modify.
What would be the difference between:
Make a fork of the project, then do a pull, work local and then push it
not fork, just pull, work local and then push
This is my first project using JQuery that obtains data from an API and shows them
link
It works well in codepen, but when I uploaded it to github pages the requests to the API stopped working
link
If someone knows why the projec...
I am working with several github users and I am the administrator for it myself.
I have an account on github, and that account is the one that other users upload their progress, since this is the main project.
The inconvenience is that des...
I am running the following code to make a query:
public static function myfuncion(){
$conm = new Database();
$sql = "select 'user_nombre' from '".self::$tablename."' where 'user_nick' = ?;";
$conm->prepare(...
Creating my github repository run the codes in the order
git add . , git commit -m 'un commit , but at the time of wanting to upload my code to the remote repository with the command git push -u origin master I get an error,...
I have my local project but when doing the steps to upload it to github and I see my work on github.com my repository is not displayed, it is empty What is it that I am doing wrong?
these are the commands that came in the example
git init...
You can leave me the steps to connect to my remote github repository and update all the code that is in that repository, thanks
$ git remote add origin github.com/alexhak1/ThinkSecWEB
fatal: remote origin already exists
$ git push master
fata...
The following question arises:
I'm working with a PHP project and it weighs around 1.5 GB. And besides this it contains a little more than 5000 files.
When doing the git add. and the git commit -m "Comments of the commit" no problem oc...
I am a student of programming, every time I give push in android studio does not upload anything to the repository, but if I give a commit & push up the changes, I would like to explain the difference between these and the use that should gi...