My github repo does not accept some js files?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.
my .gitignore file contains these lines :
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/
# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*
# SASS
.sass-cache/
# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml
# External tool builders
.externalToolBuilders/**
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/
# Visual Studio Code
.vscode/
# Maven
/log/
/target/
# Gradle
.gradle/
/build/
# Package Files
*.jar
*.war
*.ear
*.db
# Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
# Mac OSX
.DS_Store
.svn
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories
/bin/
/deploy/
# Logs
*.log
# Others
*.class
*.*~
*~
.merge_file*
# Gradle Wrapper
!gradle/wrapper/gradle-wrapper.jar
# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar
# ESLint
.eslintcache
How can I solve that problem?Just 3 files cannot be uploaded.
angular github jhipster
add a comment |
I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.
my .gitignore file contains these lines :
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/
# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*
# SASS
.sass-cache/
# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml
# External tool builders
.externalToolBuilders/**
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/
# Visual Studio Code
.vscode/
# Maven
/log/
/target/
# Gradle
.gradle/
/build/
# Package Files
*.jar
*.war
*.ear
*.db
# Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
# Mac OSX
.DS_Store
.svn
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories
/bin/
/deploy/
# Logs
*.log
# Others
*.class
*.*~
*~
.merge_file*
# Gradle Wrapper
!gradle/wrapper/gradle-wrapper.jar
# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar
# ESLint
.eslintcache
How can I solve that problem?Just 3 files cannot be uploaded.
angular github jhipster
Can you update the question with the contents of your .gitignore file?
– Sashi
Jan 3 at 5:47
add a comment |
I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.
my .gitignore file contains these lines :
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/
# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*
# SASS
.sass-cache/
# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml
# External tool builders
.externalToolBuilders/**
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/
# Visual Studio Code
.vscode/
# Maven
/log/
/target/
# Gradle
.gradle/
/build/
# Package Files
*.jar
*.war
*.ear
*.db
# Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
# Mac OSX
.DS_Store
.svn
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories
/bin/
/deploy/
# Logs
*.log
# Others
*.class
*.*~
*~
.merge_file*
# Gradle Wrapper
!gradle/wrapper/gradle-wrapper.jar
# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar
# ESLint
.eslintcache
How can I solve that problem?Just 3 files cannot be uploaded.
angular github jhipster
I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.
my .gitignore file contains these lines :
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/
# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*
# SASS
.sass-cache/
# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml
# External tool builders
.externalToolBuilders/**
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/
# Visual Studio Code
.vscode/
# Maven
/log/
/target/
# Gradle
.gradle/
/build/
# Package Files
*.jar
*.war
*.ear
*.db
# Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
# Mac OSX
.DS_Store
.svn
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories
/bin/
/deploy/
# Logs
*.log
# Others
*.class
*.*~
*~
.merge_file*
# Gradle Wrapper
!gradle/wrapper/gradle-wrapper.jar
# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar
# ESLint
.eslintcache
How can I solve that problem?Just 3 files cannot be uploaded.
angular github jhipster
angular github jhipster
edited Jan 3 at 6:01
kemal
asked Jan 3 at 5:44
kemalkemal
94
94
Can you update the question with the contents of your .gitignore file?
– Sashi
Jan 3 at 5:47
add a comment |
Can you update the question with the contents of your .gitignore file?
– Sashi
Jan 3 at 5:47
Can you update the question with the contents of your .gitignore file?
– Sashi
Jan 3 at 5:47
Can you update the question with the contents of your .gitignore file?
– Sashi
Jan 3 at 5:47
add a comment |
2 Answers
2
active
oldest
votes
Did you stage these files? Try git add <file_name>
and then committing and pushing them to remote.
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
add a comment |
Have you checked .gitignore file ? or run command to see which files are being tracked
git ls-tree -r branchname --name-only
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016926%2fmy-github-repo-does-not-accept-some-js-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Did you stage these files? Try git add <file_name>
and then committing and pushing them to remote.
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
add a comment |
Did you stage these files? Try git add <file_name>
and then committing and pushing them to remote.
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
add a comment |
Did you stage these files? Try git add <file_name>
and then committing and pushing them to remote.
Did you stage these files? Try git add <file_name>
and then committing and pushing them to remote.
answered Jan 3 at 6:05
nbirlanbirla
43828
43828
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
add a comment |
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
Thank you very much.It solved my problem
– kemal
Jan 3 at 6:14
add a comment |
Have you checked .gitignore file ? or run command to see which files are being tracked
git ls-tree -r branchname --name-only
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
add a comment |
Have you checked .gitignore file ? or run command to see which files are being tracked
git ls-tree -r branchname --name-only
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
add a comment |
Have you checked .gitignore file ? or run command to see which files are being tracked
git ls-tree -r branchname --name-only
Have you checked .gitignore file ? or run command to see which files are being tracked
git ls-tree -r branchname --name-only
answered Jan 3 at 5:48
Aashish KarkiAashish Karki
513
513
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
add a comment |
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
I installed my .gitignore file.I use intellij Idea to send files to github
– kemal
Jan 3 at 6:03
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016926%2fmy-github-repo-does-not-accept-some-js-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you update the question with the contents of your .gitignore file?
– Sashi
Jan 3 at 5:47