JAVASCRIPT ENGINE
Inspect element
There's a powerful tool hiding in your browser Inspect Element. Right-click on any web page, click Inspect,
and you'll see the innards of that site: its source code, the images
and CSS that form its design, the fonts and icons it uses, and the
Javascript code that powers animations and more.
Git hub merge & fetch
git clone
git fetch
git merge
git pull
clone
and fetch
download remote code from a repository's remote URL to your local
computer, merge
is used to merge different people's work together with yours,
and pull
is a combination of fetch
and merge.
fetch
Use
git fetch
to retrieve new work done by other people. Fetching from a
repository grabs all the new remote-tracking branches and tags without
merging those changes into your own branches.If you already have a local repository with a remote URL set up for the desired project, you can grab all the new information by using
git fetch *remotename*
in the terminal.merge
Merging combines your local changes with changes made by others.
Typically, you'd merge a remote-tracking branch (i.e., a branch fetched from a remote repository) with your local branch:
No comments:
Post a Comment